body {
    margin: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: black;

    display: flex;
    justify-content: center;
    align-items: center;
}

.contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.title {
    color: aquamarine;
    margin: 0;
}

.magpies img {
    height: 50vh;
    max-width: 100%;
    object-fit: contain;
   
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.nav-li a {
    text-decoration: none;
    font-size: 12px;
    color: aquamarine;
    transition: color 0.3s ease;
}

.nav-li a:hover {
    background-color: rgba(127, 255, 212, 0.436);
}